@ui5/cra-template-webcomponents-react
Advanced tools
Comparing version 0.0.0-d35f861f to 0.0.0-e13b634
@@ -6,3 +6,3 @@ # Change Log | ||
# [0.0.0-d35f861f](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.16...v0.0.0-d35f861f) (2020-04-24) | ||
# 0.0.0-e13b634 (2020-07-17) | ||
@@ -15,2 +15,40 @@ **Note:** Version bump only for package @ui5/cra-template-webcomponents-react | ||
## [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) | ||
**Note:** Version bump only for package @ui5/cra-template-webcomponents-react | ||
# [1.0.0](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.18...v1.0.0) (2020-04-30) | ||
### Features | ||
* update to @ui5/webcomponents 1.0.0-rc.7 ([#468](https://github.com/SAP/ui5-webcomponents-react/issues/468)) ([3b14676](https://github.com/SAP/ui5-webcomponents-react/commit/3b14676100659f602e08e571c0a63b400b274c82)) | ||
### BREAKING CHANGES | ||
* *Carousel*: rename prop `cycling` to `cyclic` | ||
* *Carousel*: replace prop `itemsPerPage` with `itemsPerPageL`, `itemsPerPageM`, `itemsPerPageS` | ||
* *ThemeProvider*: remove `theme` prop as the UI5 Web Components are now provding all CSS Variables and we rely completely on the Web Components Theme | ||
* Delete `@ui5/webcomponents-react/lib/ThemingSupport` as it is not needed anymore | ||
# [0.9.0-rc.15](https://github.com/SAP/ui5-webcomponents-react/compare/v0.9.0-rc.14...v0.9.0-rc.15) (2020-04-16) | ||
@@ -17,0 +55,0 @@ |
{ | ||
"name": "@ui5/cra-template-webcomponents-react", | ||
"version": "0.0.0-d35f861f", | ||
"version": "0.0.0-e13b634", | ||
"keywords": [ | ||
@@ -33,3 +33,3 @@ "react", | ||
}, | ||
"gitHead": "d35f861f3145a078286b858afb1fef3e2ee405e4" | ||
"gitHead": "e13b634c58e02fdcdde426234f0b0efac21b4400" | ||
} |
{ | ||
"package": { | ||
"dependencies": { | ||
"@ui5/webcomponents": "1.0.0-rc.6", | ||
"@ui5/webcomponents-fiori": "1.0.0-rc.6", | ||
"@ui5/webcomponents-icons": "1.0.0-rc.6", | ||
"@ui5/webcomponents-react": "^0.9.0-rc.14", | ||
"@ui5/webcomponents": "1.0.0-rc.7", | ||
"@ui5/webcomponents-fiori": "1.0.0-rc.7", | ||
"@ui5/webcomponents-icons": "1.0.0-rc.7", | ||
"@ui5/webcomponents-react": "^0.9.4", | ||
"@testing-library/react": "^9.3.2", | ||
@@ -9,0 +9,0 @@ "@testing-library/jest-dom": "^4.2.4", |
@@ -1,20 +0,28 @@ | ||
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'; | ||
function App() { | ||
return ( | ||
<ThemeProvider withToastContainer> | ||
<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> | ||
<ThemeProvider> | ||
<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> | ||
@@ -21,0 +29,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(); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51325
263