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

docs: intro sentence for date-dropdown #1605

Draft
wants to merge 82 commits into
base: main
Choose a base branch
from

Conversation

flxlst09
Copy link
Collaborator

@flxlst09 flxlst09 commented Dec 6, 2024

💡 What is the current behavior?

no intro sentence for date dropdown

🆕 What is the new behavior?

new intro sentence for date dropdown

🏁 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
  • 📄 Documentation was reviewed/updated (pnpm run 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

Copy link

changeset-bot bot commented Dec 6, 2024

⚠️ No Changeset found

Latest commit: 65f9743

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

@flxlst09 flxlst09 added the Deploy Preview Deploy a preview instance of the documentation label Dec 9, 2024
Copy link
Contributor

github-actions bot commented Dec 9, 2024

Deploy Preview for industrial-experience ready!

Name Link
🔍 Latest deploy log https://app.netlify.com/sites/industrial-experience/deploys/6756f78ec335dd6ca4d21c4b
😎 Deploy Preview https://pr-preview-1605--industrial-experience.netlify.app

<br />
<br />
<!-- introduction start -->
Checkboxes are form controls that allow users to select no, one or more options.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Checkboxes are form controls that allow users to select no, one or more options.
Checkboxes are form controls that allow users to select none, one or more options.

@@ -5,6 +5,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Drawer

<!-- introduction start -->
Drawers are containers that open on click on a button to show additional content.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Drawers are containers that open on click on a button to show additional content.
Drawers are containers that open on the click of a button to show additional content.

@@ -8,6 +8,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Event list

<!-- introduction start -->
Event lists display a list of any type of elements with additional details.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Event lists display a list of any type of elements with additional details.
Event lists display a list of any type of element with additional details.

@@ -5,6 +5,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Expanding search

<!-- introduction start -->
Expanding searches are search fields that expand on click to save space.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Expanding searches are search fields that expand on click to save space.
Expanding searches are search fields that expand when clicked to save space.

@@ -5,6 +5,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Flip

<!-- introduction start -->
Flips are containers that flip on click to reveal additional content.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Flips are containers that flip on click to reveal additional content.
Flips are containers that flip when clicked to reveal additional content.

@@ -5,6 +5,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Message bar

<!-- introduction start -->
Message bars display important information to users, e.g. feedback, warnings, or errors.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Message bars display important information to users, e.g. feedback, warnings, or errors.
Message bars display important information to users, e.g. feedback, warnings or errors.

@@ -7,6 +7,9 @@ import Playground from '@site/src/components/PlaygroundV3';
# Pagination

<Tags />
<!-- introduction start -->
Paginations allow users to navigate between pages of content when it is split for performance reasons.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Paginations allow users to navigate between pages of content when it is split for performance reasons.
Paginations allow users to navigate between pages of content when it's split for performance reasons.

@@ -4,7 +4,9 @@ import Events from './../auto-generated/ix-spinner/events.md';
import Playground from '@site/src/components/PlaygroundV3';

# Spinner

<!-- introduction start -->
Spinners indicate that a process is running, to provide feedback to the user.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Spinners indicate that a process is running, to provide feedback to the user.
Spinners indicate that a process is running to provide feedback to the user.

@@ -8,7 +8,9 @@ import Playground from '@site/src/components/PlaygroundV3'
# Tooltip

<Tags />

<!-- introduction start -->
Tooltips provide additional information when users hover over or focus an element.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Tooltips provide additional information when users hover over or focus an element.
Tooltips provide additional information when users hover over or focus on an element.

@@ -5,6 +5,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Upload

<!-- introduction start -->
Uploads allow users to select and upload files from their device by drag-and-drop.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Uploads allow users to select and upload files from their device by drag-and-drop.
Uploads allow users to select and upload files from their device via drag-and-drop.

@@ -5,6 +5,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Toggle

<!-- introduction start -->
Toggles (switches) enable users to toggle between an on and off state.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Toggles (switches) enable users to toggle between an on and off state.
Toggle switches enable users to toggle between an on and off state.

@@ -11,6 +11,10 @@ import Playground from '@site/src/components/PlaygroundV3';

# Modal

<!-- introduction start -->
Modals present information prominently and are useful to gather essential user input without navigating to another page.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
Modals present information prominently and are useful to gather essential user input without navigating to another page.
Modals present information prominently and are useful for gathering essential user input without navigating to another page.

@@ -4,7 +4,9 @@ import Props from './../auto-generated/ix-kpi/props.md';
import Playground from '@site/src/components/PlaygroundV3';

# KPI

<!-- introduction start -->
KPIs display measured values together with a status to help the user make better decisions.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
KPIs display measured values together with a status to help the user make better decisions.
KPIs display measured values together with a status indicator to help users interpret data.

ECharts offers a wide variety of different chart types and features. Following page deals with some more special chart types and chart features, which might become handy in some use cases.

<!-- introduction start -->
ECharts offers a wide variety of different chart types and features, including interacting with charts that users need in some use cases.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
ECharts offers a wide variety of different chart types and features, including interacting with charts that users need in some use cases.
ECharts offers a wide variety of different chart types and features for enhanced visualization and charting.

Copy link
Collaborator

@tokyojen tokyojen left a comment

Choose a reason for hiding this comment

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

Get in touch if you want to discuss any of the changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Deploy Preview Deploy a preview instance of the documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants