Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change scdn logos #1084

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ npm/npmjs/-/cose-base/2.2.0, MIT, approved, clearlydefined
npm/npmjs/-/cosmiconfig/6.0.0, MIT, approved, clearlydefined
npm/npmjs/-/cosmiconfig/7.1.0, MIT, approved, #4975
npm/npmjs/-/cross-fetch/3.1.5, MIT, approved, clearlydefined
npm/npmjs/-/cross-spawn/7.0.3, MIT, approved, clearlydefined
npm/npmjs/-/cross-spawn/7.0.3, MIT, approved, #17146
npm/npmjs/-/crypto-js/4.1.1, MIT AND BSD-2-Clause, approved, #6630
npm/npmjs/-/crypto-random-string/2.0.0, MIT, approved, clearlydefined
npm/npmjs/-/css-declaration-sorter/6.3.1, ISC, approved, clearlydefined
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "PURIS-DCM Supply Chain Disruption Notifications"
sidebar_position: 2
---

![Supply Chain Disruption Notifications kit banner](/img/kit-icons/scdn-kit-icon.svg)
![Supply Chain Disruption Notifications kit banner](@site/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-icon.drawio.svg)

## Vision

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,26 @@ description: 'Supply Chain Disruption Notifications'
sidebar_position: 1
---

![Supply Chain Disruption Notifications kit banner](/img/kit-icons/scdn-kit-icon.svg)
![Supply Chain Disruption Notifications kit banner](@site/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-icon.drawio.svg)

### Supply Chain Disruption Notifications

All notable changes to this Kit will be documented in this file.

## [1.0.1] - 2024-11-18

### Added

- ./.

### Changed

- New kit-icon and gallery banner

### Removed

- ./.

## [1.0.0] - 2024-08-01

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: 'PURIS-DCM Supply Chain Disruption Notifications'
sidebar_position: 4
---

![Supply Chain Disruption Notifications kit banner](/img/kit-icons/scdn-kit-icon.svg)
![Supply Chain Disruption Notifications kit banner](@site/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-icon.drawio.svg)

## Reference Implementation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "PURIS-DCM Supply Chain Disruption Notifications"
sidebar_position: 3
---

![Supply Chain Disruption Notifications kit banner](/img/kit-icons/scdn-kit-icon.svg)
![Supply Chain Disruption Notifications kit banner](@site/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-icon.drawio.svg)

## Introduction

Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ const config = {
},
{
to: '/docs-kits/next/kits/Supply%20Chain%20Disruption%20Notifications%20KIT/Adoption%20View%20PURIS-DCM%20Supply%20Chain%20Disruption%20Notifications',
label: 'Supply Chain Disruption Notifications KIT',
label: 'Supply Chain Disruption Notifications',
Grand-Thibault marked this conversation as resolved.
Show resolved Hide resolved
},
{
to: '/docs-kits/kits/PCF%20Exchange%20Kit/Adoption%20View',
Expand Down
6 changes: 5 additions & 1 deletion src/components/CarouselComponent/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@
return (
<div key={kit.id} className={styles.slider_item}>
<Link className={styles.slider_content} to={kit.pageRoute}>
<img src={kit.img} className={styles.slider_img}/>
{typeof kit.img === 'function' ? (
<kit.img className={styles.slider_img} alt={kit.name} />
) : (
<img src={kit.img} className={styles.slider_img} alt={kit.name} />
)}
</Link>
</div>
)
Expand Down
7 changes: 6 additions & 1 deletion src/components/KitsGallery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ export default function KitsGallery({itemsArray, title, description}) {
return(
<div key={index} className={styles.gallery_item}>
<Link to={kit.pageRoute} className={styles.gallery_link}>
<img src={kit.img} className={styles.item_img}/>
{typeof kit.img === 'function' ? (
<kit.img className={styles.item_img} alt={kit.name} />
) : (
<img src={kit.img} className={styles.item_img} alt={kit.name} />
)}

</Link>
</div>
)
Expand Down
1 change: 1 addition & 0 deletions src/components/KitsGallery/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

.item_img {
border-radius: 10px;
height: 100%;
width: 100%;
object-fit: cover;
}
Expand Down
7 changes: 6 additions & 1 deletion src/components/KitsGalleryMDX/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@
return(
<div key={index} className={styles.gallery_item}>
<Link to={kit.pageRoute} className={styles.gallery_link}>
<img src={kit.img} className={styles.item_img}/>
{typeof kit.img === 'function' ? (
<kit.img className={styles.item_img} alt={kit.name} />
) : (
<img src={kit.img} className={styles.item_img} alt={kit.name} />
)}

</Link>
</div>
)
Expand Down
1 change: 1 addition & 0 deletions src/components/KitsGalleryMDX/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@

.item_img {
border-radius: 10px;
height: 100%;
width: 100%;
object-fit: cover;
}
Expand Down
7 changes: 6 additions & 1 deletion src/components/KitsGalleryWithFilters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,12 @@ export default function KitsGalleryWithFilters({itemsArray, title, description})
return(
<div key={index} className={styles.gallery_item}>
<Link to={kit.pageRoute} className={styles.gallery_link}>
<img src={kit.img} className={styles.item_img}/>
{typeof kit.img === 'function' ? (
<kit.img className={styles.item_img} alt={kit.name} />
) : (
<img src={kit.img} className={styles.item_img} alt={kit.name} />
)}

</Link>
</div>
)
Expand Down
1 change: 1 addition & 0 deletions src/components/KitsGalleryWithFilters/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@

.item_img {
border-radius: 10px;
height: 100%;
width: 100%;
object-fit: cover;
}
Expand Down
Binary file removed static/img/SCDN_Kit.png
Binary file not shown.
30 changes: 0 additions & 30 deletions static/img/SCDN_Kit.svg

This file was deleted.

100 changes: 0 additions & 100 deletions static/img/kit-icons/scdn-kit-icon.svg

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ This work is licensed under the CC-BY-4.0

- SPDX-License-Identifier: CC-BY-4.0
- SPDX-FileCopyrightText: 2024 Contributors to the Eclipse Foundation
- Source URL: https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kit-icons/scdn-kit-icon.svg
- Source URL: https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/docs-kits/kits/PURIS%20Kit/assets/example-use-case.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ This work is licensed under the CC-BY-4.0

- SPDX-License-Identifier: CC-BY-4.0
- SPDX-FileCopyrightText: 2024 Contributors to the Eclipse Foundation
- Source URL: https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/SCDN_Kit.png
- Source URL: https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/docs-kits/kits/PURIS%20Kit/assets/example-use-case.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ This work is licensed under the CC-BY-4.0

- SPDX-License-Identifier: CC-BY-4.0
- SPDX-FileCopyrightText: 2024 Contributors to the Eclipse Foundation
- Source URL: https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/SCDN_Kit.svg
- Source URL: https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/docs-kits/kits/PURIS%20Kit/assets/example-use-case.svg
2 changes: 1 addition & 1 deletion utils/kitsGallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import Agents_Kit from "@site/static/img/Agents_Kit.png";
import Maas_Kit from "@site/static/img/MaaSKIT.png";
import PURIS_Kit from '@site/static/img/PURISKIT.png';
import Industry_Kit from "@site/static/img/Industry_Kit.png";
import SupplyChainsDisruptionNotifications_Kit from "@site/static/img/SCDN_Kit.png";
import SupplyChainsDisruptionNotifications_Kit from "@site/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-gallery.drawio.svg";

// import MoreToCome from "@site/static/img/gallery-more_coming-minified.png";

Expand Down
Loading