Socket
Book a DemoInstallSign in
Socket

@telekom/scale-components-react-neutral

Package Overview
Dependencies
Maintainers
4
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@telekom/scale-components-react-neutral

React proxy for @telekom/scale-components

3.0.0-beta.56
latest
Source
npmnpm
Version published
Maintainers
4
Created
Source

Scale and React

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-neutral as well as the @telekom/scale-components-react-neutral 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!

src/index.html

import React from 'react';
import ReactDOM from 'react-dom';
import { applyPolyfills, defineCustomElements } from '@telekom/scale-components-neutral/loader';
import App from './App';
import '@telekom/scale-components-neutral/dist/scale-components/scale-components.css';
import './index.css';

applyPolyfills().then(() => {
  defineCustomElements(window);
});

ReactDOM.render(<App />, document.getElementById('root'));

src/App.jsx

import React from 'react';
import { ScaleButton } from '@telekom/scale-components-react-neutral';
import './App.css';

const App: React.FC = () => (
  <div>
    <ScaleButton>Label</ScaleButton>
  </div>
);

export default App;

Events in React

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

Package last updated on 23 Jun 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.