CSP Strict Dynamic EDIT: This link provides some incorrect information. See answer below.
From the above link, it sounds like strict-dynamic allows loaded scripts to create additional scripts, does the same hold true for the eval keyword? In other words, would using strict-dynamic in combination with a nonce allow a third party dependency hosted on an internal CDN to be loaded that would then be able to use the eval keyword to generate javascript from strings?
From this StackOverflow question here, I am aware that it is not possible to use a combination of unsafe-eval etc. to get the granularity required.
Is there a way to allow eval for very specific use cases in 2021 or is unsafe-eval required if I am unable to refactor the code to remove the use of eval?