Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
)) : null}
)
DashboardBranch.propTypes = {
data: PropTypes.objectOf(PropTypes.any).isRequired,
onClick: PropTypes.func.isRequired,
classes: PropTypes.objectOf(PropTypes.string).isRequired,
}
export default withStyles(styles)(DashboardBranch)
clusters={clusters}
actions={{
backToInbox: true,
trash: true,
}}
/>
))
: 'Loading...'
}
)
}
export default withStyles(styles)(Done)
}
SuspendTimeoutConfig.propTypes = {
classes: PropTypes.shape({
configContainer: PropTypes.shape({}),
configSubContainer: PropTypes.shape({}),
subTitle: PropTypes.shape({}),
formControl: PropTypes.shape({}),
}).isRequired,
intl: PropTypes.shape({
formatMessage: PropTypes.func,
}).isRequired,
};
export default injectIntl(withStyles(styles, { withTheme: true })(SuspendTimeoutConfig));
engagedPolicyFile={engagedPolicyFile}
api={api}
updateMediationPolicy={updateMediationPolicy}
/>
)}
);
}
OutFlow.propTypes = {
classes: PropTypes.shape({}).isRequired,
api: PropTypes.shape({}).isRequired,
updateMediationPolicy: PropTypes.func.isRequired,
};
export default withStyles(styles)(OutFlow);
{props.description}
)
: null
}
);
UnknownError.propTypes = {
classes: PropTypes.object.isRequired,
title: PropTypes.string,
description: PropTypes.string
};
export default withStyles(styles, {withTheme: true})(UnknownError);
}
const mapsStateToProps = (
state: IAppState,
props: IFormDesignerProvidedProps,
): IFormDesignerProps => {
return {
classes: props.classes,
components: state.formDesigner.layout.components,
activeList: state.formDesigner.layout.activeList,
language: state.appData.language.language,
dataModel: state.appData.dataModel.model,
};
};
export default withStyles(
styles,
{ withTheme: true },
)(
connect(
mapsStateToProps,
)(
FormDesigner,
)
);
variant="outlined"
size="small"
color="primary"
fullWidth
startIcon={}
onClick={() => {}}>
Import from Component Template
*/}
);
}
}
const RenderComponentsWithStyles = withStyles(styles)(RenderComponentsRaw);
let components = (props: stateProps) => {
return ;
};
export const Components = connect(mapStateToProps)(components);
Feedback
)
}
}
ErrorDialog.propTypes = {
onSuccessCallback: PropTypes.func.isRequired,
content: PropTypes.node.isRequired,
title: PropTypes.string
}
export default withStyles(styles, { withTheme: true })(ErrorDialog)
paddingLeft: ( props.depth + 2) * 2 + "vw",
}}
>
<span> {props.title}</span>
);
};
export default withStyles(style, {withTheme: true})(DraggableNodeComponent);
background: theme.palette.primary.main,
color: theme.palette.common.white,
},
firstHighlight: {
extend: 'highlight',
borderTopLeftRadius: '50%',
borderBottomLeftRadius: '50%',
},
endHighlight: {
extend: 'highlight',
borderTopRightRadius: '50%',
borderBottomRightRadius: '50%',
},
}));
export default withStyles(styles)(CustomElements);