@ui5/cra-template-webcomponents-react
Advanced tools
Comparing version 0.0.0-d35f861f to 0.0.0-dc68681
@@ -6,4 +6,46 @@ # 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-dc68681 (2020-07-31) | ||
### Bug Fixes | ||
* **web components:** export shared prop types ([dc68681](https://github.com/SAP/ui5-webcomponents-react/commit/dc6868133759427a5978f501d621f5c859d24782)) | ||
# [0.10.0](https://github.com/SAP/ui5-webcomponents-react/compare/v0.10.0-rc.11...v0.10.0) (2020-07-30) | ||
### Features | ||
* update to [ui5-webcomponents 1.0.0-rc.8](https://github.com/SAP/ui5-webcomponents/releases/tag/v1.0.0-rc.8) ([#623](https://github.com/SAP/ui5-webcomponents-react/issues/623)) ([45bbc8c](https://github.com/SAP/ui5-webcomponents-react/commit/45bbc8cb8d9c43774ae44ff15e4026c67be434c3)) | ||
### BREAKING CHANGES | ||
* Deleted `Notification` component, replaced by `NotificationListItem` | ||
* Deleted `NotificationGroup` component, replaced by `NotificationGroupListItem` | ||
* **ProgressIndicator** replaced by UI5 Web Component with new API | ||
* **ShellBar**: `logo` is now accepting an `img` tag or the `Avatar` component. Passing a `string` with the URL to the image is not longer supported. | ||
* **TabContainer** will no longer automatically select the first tab, if no tab is selected. If you relied on this behaviour, you should now explicitly set the selected property on the first tab. | ||
## [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 | ||
@@ -15,2 +57,21 @@ | ||
# [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 +78,0 @@ |
{ | ||
"name": "@ui5/cra-template-webcomponents-react", | ||
"version": "0.0.0-d35f861f", | ||
"version": "0.0.0-dc68681", | ||
"keywords": [ | ||
@@ -33,3 +33,3 @@ "react", | ||
}, | ||
"gitHead": "d35f861f3145a078286b858afb1fef3e2ee405e4" | ||
"gitHead": "dc6868133759427a5978f501d621f5c859d24782" | ||
} |
{ | ||
"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.8", | ||
"@ui5/webcomponents-fiori": "1.0.0-rc.8", | ||
"@ui5/webcomponents-icons": "1.0.0-rc.8", | ||
"@ui5/webcomponents-react": "^0.10.0", | ||
"@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
52419
263