-
Notifications
You must be signed in to change notification settings - Fork 68
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
fix: remove deprecated properties #1581
base: release-3.0.0
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 0dc057a The changes in this PR will be included in the next version bump. This PR includes changesets to release 5 packages
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 |
Report of
|
BREAKING_CHANGES/v3.md
Outdated
@@ -1,5 +1,7 @@ | |||
# Breaking changes v3 | |||
|
|||
Here is a detailed overview of the significant changes introduced in the major updates of Siemens industrial experience. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is a detailed overview of the significant changes introduced in the major updates of Siemens industrial experience. | |
Here is a detailed overview of all breaking changes introduced in this major update of Siemens Industrial Experience. |
.changeset/afraid-papayas-own.md
Outdated
- The `selectedIndices` attribute has been **replaced by** `value`. | ||
- The `itemSelectionChange` event has been **replaced by** `valueChange`. | ||
- **ix-select-item**: | ||
- The `value` attribute type has been updated to `string`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- The `value` attribute type has been updated to `string`. | |
- The type of the `value` property has been updated to `string`. |
BREAKING_CHANGES/v3.md
Outdated
#### ix-datetime-picker | ||
- The `textSelectedDate` property has been **replaced by** `i18nDone`. | ||
- The `done` event has been **replaced by** `dateSelect`. | ||
- The `eventDelimiter` property was also removed as part of the adjustment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- The `eventDelimiter` property was also removed as part of the adjustment. | |
- The `eventDelimiter` property has been removed. |
BREAKING_CHANGES/v3.md
Outdated
|
||
#### ix-icon-button | ||
- The `color` attribute has been **replaced by** `iconColor`. | ||
- size `32` has been removed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- size `32` has been removed. | |
- Size `32` has been removed. |
@@ -183,7 +183,7 @@ export class FormFieldLabel implements IxComponent { | |||
ref={this.labelRef} | |||
> | |||
<ix-typography | |||
color={this.isInvalid ? 'alarm' : 'soft'} | |||
textColor={this.isInvalid ? 'alarm' : 'soft'} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
textColor={this.isInvalid ? 'alarm' : 'soft'} | |
text-color={this.isInvalid ? 'alarm' : 'soft'} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
textColor should be okay in here, shouldn't it?
@@ -297,7 +297,7 @@ export class Slider { | |||
</div> | |||
</div> | |||
{this.error ? ( | |||
<ix-typography class={'label-error'} color="alarm"> | |||
<ix-typography class={'label-error'} text-color="alarm"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<ix-typography class={'label-error'} text-color="alarm"> | |
<ix-typography class={'label-error'} textColor="alarm"> |
Quality Gate failedFailed conditions |
💡 What is the current behavior?
GitHub Issue Number: #N/A, [IX-1601]
🆕 What is the new behavior?
🏁 Checklist
A pull request can only be merged if all of these conditions are met (where applicable):
pnpm run docs
)pnpm test
)pnpm lint
)pnpm build
, changes pushed)👨💻 Help & support