Skip to content

Conversation

@varun-srinivasa
Copy link
Collaborator

πŸ’‘ What is the current behavior?

GitHub Issue Number: #

πŸ†• What is the new behavior?

πŸ‘¨β€πŸ’» Help & support

@netlify
Copy link

netlify bot commented Jan 22, 2026

βœ… Deploy Preview for industrial-experience ready!

Name Link
πŸ”¨ Latest commit ec2ec29
πŸ” Latest deploy log https://app.netlify.com/projects/industrial-experience/deploys/69733b96eca52f0008915eae
😎 Deploy Preview https://deploy-preview-173--industrial-experience.netlify.app
πŸ“± Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @varun-srinivasa, 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 iX Design System's documentation by introducing comprehensive UX writing guidelines for various message types, such as non-critical information, progress updates, time-related notifications, toast messages, and tooltips. These additions aim to standardize user communication, improve clarity, and ensure a consistent user experience. Furthermore, the changes include crucial updates to Angular integration instructions, detailed migration notes for specific components, and practical advice on component readiness and rendering, all contributing to a more robust and user-friendly development experience.

Highlights

  • Expanded UX Writing Guidelines: Introduced new documentation pages covering best practices for non-critical information messages, progress updates, time-related messages, toast messages, and tooltips to standardize user communication.
  • Documentation Formatting Consistency: Standardized the use of 'className' and 'markdown="true"' attributes in 'div' elements across numerous MDX/MD files for improved rendering and compatibility.
  • Angular Integration Enhancements: Added detailed guidance on using value accessor directives for iX form components in Angular standalone setups to prevent common 'No value accessor' errors.
  • Component Migration Notes: Updated the 4.0.0 migration guide with changes for 'ix-flip-tile' (property 'state' renamed to 'variant') and 'ix-message-bar' (property 'dismissible' renamed to 'persistent').
  • Icon Asset Path Configuration: Provided new recommendations for configuring icon asset paths in Angular applications using 'meta'-tags or 'setAssetPath' function to avoid console warnings.
  • FAQ Updates: Introduced new FAQ entries addressing how to detect when iX components are ready ('componentOnReady()') and how to prevent Flash of Undefined Custom Elements (FOUCE).
  • Dependency Updates: Bumped '@siemens/ix' and '@siemens/ix-react' package versions to '^4.2.0' across the project dependencies.
Ignored Files
  • Ignored by pattern: .gemini/** (1)
    • .gemini/styleguide.md
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. ↩

Copy link
Contributor

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

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 several new documentation pages and updates existing ones. The changes include dependency updates, additions to the migration guide, and fixes for class attributes in MDX files. My review focuses on ensuring the new documentation adheres to the repository's style guide, particularly regarding typography (apostrophes), MDX syntax, and heading formats. I've also identified a typo in the frontmatter of a new file.

@@ -0,0 +1,162 @@
---
sidebar_position: 99
Sidebar_lable: Non-critical information messages
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

There's a typo in the frontmatter. Sidebar_lable should be sidebar_label.

sidebar_label: Non-critical information messages


### Keep messages short and concise.

<div class="dos-and-donts" markdown>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

In MDX, the class attribute should be className, and the markdown attribute should be set to markdown="true". This issue is present in multiple div elements throughout this new file. Please correct all occurrences to ensure the components render correctly.

<div className="dos-and-donts" markdown="true">

</div>
</div>

## Dos and Don'ts
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The heading Dos and Don'ts does not follow the style guide. According to line 91 of the repository style guide, the title should be Dos and Don’ts, using a right single quotation mark.

## Dos and Don’ts
References
  1. The title is "Dos and Don’ts" (link)


## Use sentence case to align with our UX writing guidelines.

<div class="dos-and-donts" markdown>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

In MDX, the class attribute should be className, and the markdown attribute should be set to markdown="true". This issue occurs multiple times in this file within dos-and-donts divs. Please correct all instances.

<div className="dos-and-donts" markdown="true">

</div>
</div>

## Avoid ellipses to show time remaining and approximate or unknown times as they're status indicators, not actions.
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The apostrophe in they're is incorrect. Per the style guide (line 35), please use the right single quotation mark (’, U+2019).

## Avoid ellipses to show time remaining and approximate or unknown times as they’re status indicators, not actions.
References
  1. Apostrophe: Always use the symbol ’ (U+2019, "right single quotation mark"), not ' (link)


### Use a specific time or time frame whenever possible.

<div class="dos-and-donts" markdown>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

In MDX, the class attribute should be className, and the markdown attribute should be set to markdown="true". This issue occurs multiple times in this file within dos-and-donts divs. Please correct all instances.

<div className="dos-and-donts" markdown="true">


### Use simple past tense verbs to state what happened.

<div class="dos-and-donts" markdown>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

In MDX, the class attribute should be className, and the markdown attribute should be set to markdown="true". This issue occurs multiple times in this file within dos-and-donts divs. Please correct all instances.

<div className="dos-and-donts" markdown="true">


### Use tooltips to define icons and show control names.

<div class="dos-and-donts" markdown>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

In MDX, the class attribute should be className, and the markdown attribute should be set to markdown="true". This issue occurs multiple times in this file within dos-and-donts divs. Please correct all instances.

<div className="dos-and-donts" markdown="true">


### Use warning messages only when an action or awareness is genuinely needed.

<div class="dos-and-donts" markdown>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

In MDX, the class attribute should be className, and the markdown attribute should be set to markdown="true". This issue occurs multiple times in this file within dos-and-donts divs. Please correct all instances.

<div className="dos-and-donts" markdown="true">

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.

4 participants