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(dropdown): implement and document attrs and vars #799

Merged
merged 1 commit into from
Feb 3, 2021
Merged

docs(dropdown): implement and document attrs and vars #799

merged 1 commit into from
Feb 3, 2021

Conversation

lalithkarikelli
Copy link
Contributor

@lalithkarikelli lalithkarikelli commented Dec 9, 2020

Description

hx-dropdownSelect : Implement and document attributes and variables

What are the relevant story cards/tickets? Any additional PRs or other references?

Jira: SURF 2105

Before you request a review for this PR:

  • For UI changes, did you manually test in recent versions of modern browsers (Chrome, Firefox, and Safari)?
  • For UI changes, did you manually test in IE11 and legacy Edge?
  • Did you add component tests for any new code?
  • Did you run the component unit tests via yarn test to ensure all tests passed?
  • Did you include a screenshot of the component tests?
  • If you changed/added functionality, did you update the demo page and documentation?
  • If needed, did you add or modify the demo test page to test the changed/added functionality?
  • Did you assign reviewers?
  • In Jira, have you linked to this PR on the ticket(s)?

@netlify
Copy link

netlify bot commented Dec 9, 2020

Deploy preview for helix-ui ready!

Built with commit 07f9bed

https://deploy-preview-799--helix-ui.netlify.app

background-color: $gray-0;
color: $gray-900;
} @else {
background-color: var(--hxDropdown-unfocused-backgroundColor, $gray-0);
Copy link
Collaborator

Choose a reason for hiding this comment

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

please change to var(--hxDropdown-unfocused-bgcolor, $gray-0);

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

Copy link
Member

Choose a reason for hiding this comment

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

I'm not seeing the recommended variable name change, please double check.

background-color: $gray-0;
color: $gray-900;
} @else {
background-color: var(--hxDropdown-unfocused-invalid-backgroundColor, $gray-0);
Copy link
Collaborator

Choose a reason for hiding this comment

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

please change to var(--hxDropdown-unfocused-invalid-bgcolor, $gray-0);

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

Copy link
Member

Choose a reason for hiding this comment

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

I'm not seeing the recommended variable name change, please double check.

background-color: $gray-100;
color: $gray-700;
} @else {
background-color: var(--hxDropdown-unfocused-disabled-backgroundColor, $gray-100);
Copy link
Collaborator

@badejayayesubabu badejayayesubabu Dec 14, 2020

Choose a reason for hiding this comment

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

please change to var(--hxDropdown-unfocused-disabled-bgcolor, $gray-100);

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

Copy link
Member

Choose a reason for hiding this comment

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

I'm not seeing the recommended variable name change, please double check.

@@ -7,7 +7,7 @@
}
@else {
border: 1px solid $gray-500;
Copy link
Collaborator

Choose a reason for hiding this comment

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

please change to border: 1px solid var(--hxDropdown-border, $gray-500);

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

@@ -18,7 +18,7 @@
}
@else {
border: 2px solid $red-900;
Copy link
Collaborator

Choose a reason for hiding this comment

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

please follow same pattern through out the application
change to border: 2px solid var(--hxDropdown-invalid-border, $gray-900);

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

@lalithkarikelli lalithkarikelli marked this pull request as ready for review December 15, 2020 10:39
Copy link
Collaborator

@badejayayesubabu badejayayesubabu left a comment

Choose a reason for hiding this comment

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

DEV LGTM

@100stacks 100stacks changed the title docs(hx-dropdownSelect): implement and document attribute and variables docs(dropdown): implement and document attrs and vars Dec 17, 2020
@100stacks 100stacks marked this pull request as draft December 21, 2020 20:23
Copy link
Member

@100stacks 100stacks left a comment

Choose a reason for hiding this comment

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

@lalithkarikelli, please squash commits.

@100stacks 100stacks added the PR: Comments Provided PR: Comments Provided label Dec 23, 2020
@lalithkarikelli
Copy link
Contributor Author

@lalithkarikelli, please squash commits.

@100stacks rebased and squashed the commits

@100stacks 100stacks removed the PR: Comments Provided PR: Comments Provided label Jan 13, 2021
@lalithkarikelli lalithkarikelli marked this pull request as ready for review January 13, 2021 11:57
Copy link
Member

@100stacks 100stacks left a comment

Choose a reason for hiding this comment

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

Please rebase.

@lalithkarikelli
Copy link
Contributor Author

Please rebase.

done.

background-color: $gray-0;
color: $gray-900;
} @else {
background-color: var(--hxDropdown-unfocused-backgroundColor, $gray-0);
Copy link
Member

Choose a reason for hiding this comment

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

I'm not seeing the recommended variable name change, please double check.

background-color: $gray-0;
color: $gray-900;
} @else {
background-color: var(--hxDropdown-unfocused-invalid-backgroundColor, $gray-0);
Copy link
Member

Choose a reason for hiding this comment

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

I'm not seeing the recommended variable name change, please double check.

background-color: $gray-100;
color: $gray-700;
} @else {
background-color: var(--hxDropdown-unfocused-disabled-backgroundColor, $gray-100);
Copy link
Member

Choose a reason for hiding this comment

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

I'm not seeing the recommended variable name change, please double check.

@@ -2,40 +2,36 @@

@mixin __selectFacade($focused: false) {
@if $focused {
border: 1px solid $cyan-700;
border: 1px solid var(--hxDropdown-focused-borderColor, $cyan-700);
Copy link
Member

Choose a reason for hiding this comment

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

Please update to the new Color Palette 2.0 color variables.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

}
}

@mixin __selectFacade--invalid($focused: false) {
@if $focused {
border: 2px solid $red-900;
border: 2px solid var(--hxDropdown-invalid-focused-borderColor, $red-900);
Copy link
Member

Choose a reason for hiding this comment

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

Please update to the new Color Palette 2.0 color variables.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

border: 2px solid $red-900;
color: $gray-900;
} @else {
border: 2px solid var(--hxDropdown-invalid-unfocused-borderColor, $red-900);
Copy link
Member

Choose a reason for hiding this comment

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

Please update to the new Color Palette 2.0 color variables.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Changes have been done, please review.

@100stacks 100stacks added the PR: Comments Provided PR: Comments Provided label Feb 2, 2021
Copy link
Member

@100stacks 100stacks left a comment

Choose a reason for hiding this comment

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

Dev LGTM

@100stacks 100stacks removed the PR: Comments Provided PR: Comments Provided label Feb 3, 2021
@100stacks 100stacks merged commit 6d9dee8 into HelixDesignSystem:master Feb 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants