* Returns the option scope keys for resolving dataset animation options. * These keys do not include the dataset itself, because it is not under options. * @param {string} datasetType * @param {string} transition * @return {string[][]}
(datasetType, transition)
| 227 | * @return {string[][]} |
| 228 | */ |
| 229 | datasetAnimationScopeKeys(datasetType, transition) { |
| 230 | return cachedKeys(`${datasetType}.transition.${transition}`, |
| 231 | () => [ |
| 232 | [ |
| 233 | `datasets.${datasetType}.transitions.${transition}`, |
| 234 | `transitions.${transition}`, |
| 235 | ], |
| 236 | // The following are used for looking up the `animations` and `animation` keys |
| 237 | [ |
| 238 | `datasets.${datasetType}`, |
| 239 | '' |
| 240 | ] |
| 241 | ]); |
| 242 | } |
| 243 | |
| 244 | /** |
| 245 | * Returns the options scope keys for resolving element options that belong |
no test coverage detected