* @static components - Returns the list of registered Components. * * @return {Component[]} - List of registered Components
()
| 950 | * @return {Component[]} - List of registered Components |
| 951 | */ |
| 952 | static components (): StaticComponent[] { |
| 953 | /** @type {boolean} */ |
| 954 | const experimentalFeatures = this.setting ('ExperimentalFeatures'); |
| 955 | |
| 956 | return this._components.filter(component => { |
| 957 | return component._experimental === false || experimentalFeatures === true; |
| 958 | }); |
| 959 | } |
| 960 | |
| 961 | /** |
| 962 | * @static component - Access to an specific component class |
no test coverage detected