
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@telekom/scale-components-react
Advanced tools
Unfortunately React brings it's own synthetic event system and handles all props as HTML attributes, more info: Custom Elements Everywhere.
To work around this problems we provide custom element wrappers for better developer experience.
Please note that you will need to install both, the @telekom/scale-components as well as the @telekom/scale-components-react packages.
Once you have installed both packages and defined the custom elements, Scale components behave mostly the way you would expect a React component to behave!
import React from 'react';
import ReactDOM from 'react-dom';
import { applyPolyfills, defineCustomElements } from '@telekom/scale-components/loader';
import App from './App';
import '@telekom/scale-components/dist/scale-components/scale-components.css';
import './index.css';
applyPolyfills().then(() => {
defineCustomElements(window);
});
ReactDOM.render(<App />, document.getElementById('root'));
import React from 'react';
import { ScaleButton } from '@telekom/scale-components-react';
import './App.css';
const App: React.FC = () => (
<div>
<ScaleButton>Label</ScaleButton>
</div>
);
export default App;
In order to prevent collisions with standard events and compatibility with other libraries and frameworks,
some components of Scale are using custom event names. You can find documentation for the custom events on the respective component pages in the docs section.
Events in React are prefixed with: Scale{EventName}
Find Telekom Scale on GitHub.
3.0.0-beta.158 (2025-10-29)
FAQs
React proxy for @telekom/scale-components
The npm package @telekom/scale-components-react receives a total of 1,753 weekly downloads. As such, @telekom/scale-components-react popularity was classified as popular.
We found that @telekom/scale-components-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.