Skip to content

Commit

Permalink
Merge pull request #97 from ZEISS/develop
Browse files Browse the repository at this point in the history
Elevate
  • Loading branch information
Maksym Kotielnikov authored May 23, 2019
2 parents 6a5249b + d0b160a commit a9c092b
Show file tree
Hide file tree
Showing 139 changed files with 17,036 additions and 1,969 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Precise UI Changelog

## 0.6.0

- Implement tag builder with auto-completion possibility
- `Flyout` fixed compatibility with IE11
- `Headline` styles update
- Updated label in `Modal`
- Added new icons
- Remove disabled attribute from HTML element of `InteractiveSurface`
- Bugfix: Close `DropdownField` if other one was opened (#44)
- Bugfix: Fixed crash of `Rating` component (#69)
- Added `onChangeDone` event to `Slider` component
- Added `validationRules` for `Form`
- Fixed: missed selection state of `RadioButtonGroup` in non-controlled mode with form context.
- Compatibility with IE11
- `Sidebar` component added
- Fixed: component wrapped with `withValidation` hoc didn't display an error
- Feature: new Dropdown props (open / direction)

## 0.5.0

- Initial release
2 changes: 1 addition & 1 deletion docs/components/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const HomePage: React.SFC = () => (
<TopContainer>
<LogoImage src="precise-logo.svg" />
<Message>An extensive React component library with batteries included.</Message>
<Button to="/getting-started">Getting Started</Button>
<Button href="/#/Getting%20Started">Getting Started</Button>
</TopContainer>
<InfoContainer>
<Head icon="Widgets" title="Prerequisites" />
Expand Down
2 changes: 1 addition & 1 deletion docs/components/SectionHeadingRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface SectionHeadingRendererProps {
}

const SectionHeadingRenderer: React.SFC<SectionHeadingRendererProps> = ({ children, depth }) => {
return <Headline level={(depth + 1) as any}>{children}</Headline>;
return <Headline level={depth as any}>{children}</Headline>;
};

export default SectionHeadingRenderer;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified integration/__image_snapshots__/DropdownField_3-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified integration/__image_snapshots__/DropdownField_5-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified integration/__image_snapshots__/DropdownField_7-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified integration/__image_snapshots__/DropdownField_9-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified integration/__image_snapshots__/DropdownMenu_1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified integration/__image_snapshots__/DropdownMenu_3-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added integration/__image_snapshots__/Form_7-snap.png
Binary file modified integration/__image_snapshots__/Headline_3-snap.png
Binary file modified integration/__image_snapshots__/Headline_5-snap.png
Binary file modified integration/__image_snapshots__/Headline_7-snap.png
Binary file modified integration/__image_snapshots__/Icon_11-snap.png
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
setupFiles: ['./test/setup.ts'],
setupFilesAfterEnv: ['./test/setupTest.ts'],
transform: {
'^.+\\.(ts|tsx?)$': 'ts-jest',
},
Expand Down
Loading

0 comments on commit a9c092b

Please sign in to comment.