-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 188-review-searchbar; added 3rd size class…
… to the search-field
- Loading branch information
Showing
33 changed files
with
729 additions
and
459 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
204 changes: 102 additions & 102 deletions
204
examples/wrapper-components/react-javascript/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
examples/wrapper-components/react-javascript/src/components/Sidebar/Sidebar.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react'; | ||
import { IfxSidebar, IfxSidebarItem } from '@infineon/infineon-design-system-react'; | ||
|
||
function Sidebar() { | ||
return ( | ||
<div > | ||
<IfxSidebar> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item One</IfxSidebarItem> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item Two</IfxSidebarItem> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item Three</IfxSidebarItem> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item Four</IfxSidebarItem> | ||
</IfxSidebar> | ||
</div> | ||
) | ||
} | ||
|
||
export default Sidebar; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
examples/wrapper-components/react-typescript/src/components/Sidebar/Sidebar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
import { IfxSidebar, IfxSidebarItem } from '@infineon/infineon-design-system-react'; | ||
|
||
function Sidebar() { | ||
return ( | ||
<div > | ||
<IfxSidebar> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item One</IfxSidebarItem> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item Two</IfxSidebarItem> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item Three</IfxSidebarItem> | ||
<IfxSidebarItem href="http://google.com" target="_blank" icon="image-16">Item Four</IfxSidebarItem> | ||
</IfxSidebar> | ||
</div> | ||
) | ||
} | ||
|
||
export default Sidebar; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
examples/wrapper-components/vue-javascript/src/components/Sidebar.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<div class="app"> | ||
<ifx-sidebar application-name="This is a very long application"> | ||
<ifx-sidebar-item href="http://google.com" target="_blank" icon="image-16">Item One</ifx-sidebar-item> | ||
<ifx-sidebar-item href="http://yahoo.com" target="_blank" icon="image-16">Item Two</ifx-sidebar-item> | ||
<ifx-sidebar-item href="http://bing.com" target="_blank" icon="image-16">Item Three</ifx-sidebar-item> | ||
<ifx-sidebar-item href="http://naver.com" target="_blank" icon="image-16">Item Four</ifx-sidebar-item> | ||
</ifx-sidebar> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
</script> | ||
|
||
|
||
<style scoped> | ||
.app { | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
examples/wrapper-components/vue-typescript/src/components/Sidebar.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<div class="app"> | ||
<ifx-sidebar application-name="This is a very long application"> | ||
<ifx-sidebar-item href="http://google.com" target="_blank" icon="image-16">Item One</ifx-sidebar-item> | ||
<ifx-sidebar-item href="http://yahoo.com" target="_blank" icon="image-16">Item Two</ifx-sidebar-item> | ||
<ifx-sidebar-item href="http://bing.com" target="_blank" icon="image-16">Item Three</ifx-sidebar-item> | ||
<ifx-sidebar-item href="http://naver.com" target="_blank" icon="image-16">Item Four</ifx-sidebar-item> | ||
</ifx-sidebar> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
</script> | ||
|
||
|
||
<style scoped> | ||
.app { | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
# v18.2.16 (Thu Jul 13 2023) | ||
|
||
#### 🐛 Bug Fix | ||
|
||
- 190 review sidebar [#215](https://github.com/Infineon/infineon-design-system-stencil/pull/215) ([@tishoyanchev](https://github.com/tishoyanchev) [email protected]) | ||
|
||
#### 🔩 Dependency Updates | ||
|
||
- Bump semver from 5.7.1 to 5.7.2 in /examples/stencil-components/react [#253](https://github.com/Infineon/infineon-design-system-stencil/pull/253) ([@dependabot[bot]](https://github.com/dependabot[bot])) | ||
- Bump semver from 5.7.1 to 5.7.2 in /examples/wrapper-components/react-javascript [#254](https://github.com/Infineon/infineon-design-system-stencil/pull/254) ([@dependabot[bot]](https://github.com/dependabot[bot])) | ||
- Bump semver from 5.7.1 to 5.7.2 in /packages/components [#246](https://github.com/Infineon/infineon-design-system-stencil/pull/246) ([@dependabot[bot]](https://github.com/dependabot[bot])) | ||
|
||
#### Authors: 3 | ||
|
||
- [@dependabot[bot]](https://github.com/dependabot[bot]) | ||
- Tisho Yanchev ([@tishoyanchev](https://github.com/tishoyanchev)) | ||
- verena-ifx ([email protected]) | ||
|
||
--- | ||
|
||
# v18.2.15 (Mon Jul 10 2023) | ||
|
||
#### 🐛 Bug Fix | ||
|
||
- 218-add-about-and-faq-section-to-storybook [#221](https://github.com/Infineon/infineon-design-system-stencil/pull/221) ([@tishoyanchev](https://github.com/tishoyanchev) [email protected]) | ||
|
||
#### Authors: 2 | ||
|
||
- Tisho Yanchev ([@tishoyanchev](https://github.com/tishoyanchev)) | ||
- verena-ifx ([email protected]) | ||
|
||
--- | ||
|
||
# v18.2.14 (Mon Jul 10 2023) | ||
|
||
#### 🐛 Bug Fix | ||
|
Oops, something went wrong.