Skip to content

feat(core): elevation changes #2155

Merged
danielleroux merged 32 commits into
release-4.0.0from
feat/3075-elevation
Sep 30, 2025
Merged

feat(core): elevation changes #2155
danielleroux merged 32 commits into
release-4.0.0from
feat/3075-elevation

Conversation

@danielleroux

Copy link
Copy Markdown
Collaborator

🆕 What is the new behavior?

Jira IX-3075 IX-3154

  • Apply new elevation via theme adaptions
  • Create outline variants of components

Docs changes: siemens/ix-docs#85

🏁 Checklist

A pull request can only be merged if all of these conditions are met (where applicable):

  • 🦮 Accessibility (a11y) features were implemented
  • 🗺️ Internationalization (i18n) - no hard coded strings
  • 📲 Responsiveness - components handle viewport changes and content overflow gracefully
  • 📕 Add or update a Storybook story
  • 📄 Documentation was reviewed/updated siemens/ix-docs
  • 🧪 Unit tests were added/updated and pass (pnpm test)
  • 📸 Visual regression tests were added/updated and pass (Guide)
  • 🧐 Static code analysis passes (pnpm lint)
  • 🏗️ Successful compilation (pnpm build, changes pushed)

👨‍💻 Help & support

@changeset-bot

changeset-bot Bot commented Sep 18, 2025

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 9911cdd

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 5 packages
Name Type
@siemens/ix-angular Major
@siemens/ix-aggrid Major
@siemens/ix-react Major
@siemens/ix Major
@siemens/ix-vue Major

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@danielleroux danielleroux changed the title Feat/3075 elevation feat(core): elevation changes Sep 18, 2025

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @danielleroux, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request significantly enhances the visual flexibility and consistency of several components by introducing a new 'variant' property and applying extensive theme adaptations. The changes streamline styling definitions, making it easier to customize component appearances and ensuring a more cohesive design system. It also includes a breaking change for the ix-flip-tile component, where its 'state' property has been renamed to 'variant' for better alignment with the new system.

Highlights

  • New Component Variants: Introduced a new 'variant' property for ix-card-accordion, ix-event-list-item, and ix-flip-tile components, allowing for diverse visual styles such as 'outline' and 'filled'.
  • Breaking Change: Flip Tile Property Rename: The ix-flip-tile component's 'state' property has been renamed to 'variant' to align with the new variant system. Corresponding type definitions (FlipTileState to FlipTileVariant) have also been updated.
  • Comprehensive Theme Adaptations: Applied new elevation styles and refactored numerous component-specific SCSS variables across the classic dark and light themes, centralizing styling definitions and improving consistency.
  • New Component Theming: Added dedicated SCSS theming files for ix-action-card, ix-card, ix-pagination, ix-pane, ix-progress-indicator, and ix-push-card, providing granular control over their appearance.
  • Documentation and Storybook Enhancements: Updated component documentation and Storybook examples to reflect the new variant properties and styling options, including new stories for ix-event-list-item, ix-event-list, ix-pane, ix-slider, and ix-tile.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces significant elevation and variant changes across multiple components, which is a great step towards a more consistent and themeable design system. The refactoring of SCSS files to use loops and variables for variants is a major improvement for maintainability. I've also noticed a pattern of reordering CSS variables in many component SCSS files. While this is a stylistic choice, I've added some suggestions to group related variables (e.g., base, hover, active states) together for better readability. Overall, this is a solid set of changes.

Comment thread packages/core/scss/theme/core/components/avatar.scss
Comment thread packages/core/scss/theme/core/components/kpi.scss
Comment thread packages/core/scss/theme/core/components/tree.scss
@siemens siemens deleted a comment from github-actions Bot Sep 23, 2025
@siemens siemens deleted a comment from github-actions Bot Sep 24, 2025
@siemens siemens deleted a comment from github-actions Bot Sep 24, 2025
@danielleroux

Copy link
Copy Markdown
Collaborator Author

/release:pr

@github-actions

Copy link
Copy Markdown
Contributor

A new release has been made for this PR. You can install it with:

Core library:

npm i @siemens/ix@0.0.0-pr-2155-20250924075220

Angular:

npm i @siemens/ix-angular@0.0.0-pr-2155-20250924075220

React:

npm i @siemens/ix-react@0.0.0-pr-2155-20250924075220

Vue:

npm i @siemens/ix-vue@0.0.0-pr-2155-20250924075220

@nuke-ellington nuke-ellington left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Theme generator should already be updated with the mentioned changes

Comment thread BREAKING_CHANGES/v4.md Outdated
Comment thread packages/core/scss/theme/core/components/radiobutton.scss
Comment thread packages/core/scss/theme/core/components/slider.scss
Comment thread packages/core/src/components/card-accordion/card-accordion.tsx
Comment thread packages/core/src/components/event-list-item/event-list-item.scss Outdated
Comment thread .changeset/twelve-pots-dress.md Outdated
Comment thread packages/core/src/components/slider/slider.scss Outdated
Comment thread testing/visual-testing/tests/avatar/avatar.e2e.ts
@danielleroux

Copy link
Copy Markdown
Collaborator Author

/release:pr

@github-actions

Copy link
Copy Markdown
Contributor

A new release has been made for this PR. You can install it with:

Core library:

npm i @siemens/ix@0.0.0-pr-2155-20250929074944

Angular:

npm i @siemens/ix-angular@0.0.0-pr-2155-20250929074944

React:

npm i @siemens/ix-react@0.0.0-pr-2155-20250929074944

Vue:

npm i @siemens/ix-vue@0.0.0-pr-2155-20250929074944

@nuke-ellington nuke-ellington left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Strange comment

Comment thread packages/core/src/components/slider/slider.scss Outdated
nuke-ellington
nuke-ellington previously approved these changes Sep 30, 2025
@sonarqubecloud

Copy link
Copy Markdown

@danielleroux danielleroux merged commit 6ca7c2b into release-4.0.0 Sep 30, 2025
14 checks passed
@danielleroux danielleroux deleted the feat/3075-elevation branch September 30, 2025 11:22
This was referenced Sep 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants