
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@telekom/scale-components-react
Advanced tools
React proxy for @telekom/scale-components
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.
FAQs
React proxy for @telekom/scale-components
The npm package @telekom/scale-components-react receives a total of 1,471 weekly downloads. As such, @telekom/scale-components-react popularity was classified as popular.
We found that @telekom/scale-components-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.