Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ui5/cra-template-webcomponents-react

Package Overview
Dependencies
Maintainers
2
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ui5/cra-template-webcomponents-react - npm Package Compare versions

Comparing version 0.9.0 to 0.9.4

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [0.9.4](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.3...v0.9.4) (2020-05-08)
### Bug Fixes
* **cra-template:** fix test to be successful ([#497](https://github.com/SAP/ui5-webcomponents-react/issues/497)) ([f5932fa](https://github.com/SAP/ui5-webcomponents-react/commit/f5932fa0e2aa9cf236b718cf18a6bee49cf189af))
# [0.9.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.0.0...v0.9.0) (2020-04-30)

@@ -8,0 +19,0 @@

4

package.json
{
"name": "@ui5/cra-template-webcomponents-react",
"version": "0.9.0",
"version": "0.9.4",
"keywords": [

@@ -33,3 +33,3 @@ "react",

},
"gitHead": "b21b1f08694cd4b0c9ea93d5dcbbf383fde6b04c"
"gitHead": "e2111ed959e360f7690d86a28adfca3e6720e93d"
}

@@ -7,3 +7,3 @@ {

"@ui5/webcomponents-icons": "1.0.0-rc.7",
"@ui5/webcomponents-react": "^0.9.0",
"@ui5/webcomponents-react": "^0.9.4",
"@testing-library/react": "^9.3.2",

@@ -10,0 +10,0 @@ "@testing-library/jest-dom": "^4.2.4",

@@ -1,5 +0,13 @@

import { ThemeProvider } from '@ui5/webcomponents-react/lib/ThemeProvider';
import {
FlexBox,
FlexBoxAlignItems,
FlexBoxDirection,
FlexBoxJustifyContent,
Link,
LinkDesign,
ShellBar,
ThemeProvider
} from '@ui5/webcomponents-react';
import React from 'react';
import './App.css';
import logo from './logo.svg';

@@ -9,13 +17,13 @@ function App() {

<ThemeProvider>
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a className="App-link" href="https://reactjs.org" target="_blank" rel="noopener noreferrer">
Learn React
</a>
</header>
</div>
<ShellBar primaryTitle="UI5 Web Components for React Template" />
<FlexBox
style={{ width: '100%', height: '100vh' }}
direction={FlexBoxDirection.Column}
justifyContent={FlexBoxJustifyContent.Center}
alignItems={FlexBoxAlignItems.Center}
>
<Link href="https://sap.github.io/ui5-webcomponents-react/" target="_blank" design={LinkDesign.Emphasized}>
Getting Started with UI5 Web Component for React
</Link>
</FlexBox>
</ThemeProvider>

@@ -22,0 +30,0 @@ );

@@ -7,4 +7,4 @@ import { render } from '@testing-library/react';

const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
const linkElement = getByText(/Getting Started with UI5 Web Component for React/i);
expect(linkElement).toBeInTheDocument();
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc