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

fix(types): allow style to be an array in JSX #2947

Merged
merged 2 commits into from
Mar 1, 2021
Merged

fix(types): allow style to be an array in JSX #2947

merged 2 commits into from
Mar 1, 2021

Conversation

kadiryazici
Copy link
Contributor

Vue supports array of string and CssProperties in style attribute.
image

Vue supports array of string and CssProperties in style attribute.
@znck znck added scope: types ready to merge The PR is ready to be merged. labels Jan 6, 2021
@@ -249,7 +249,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
innerHTML?: string

class?: any
style?: string | CSSProperties
style?: string | CSSProperties | Array<string | CSSProperties>
Copy link
Contributor

@KaelWD KaelWD Jan 31, 2021

Choose a reason for hiding this comment

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

This array can be deeply nested.

type HTMLStyle = string | CSSProperties | Array<HTMLStyle>

Copy link
Member

Choose a reason for hiding this comment

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

@znck WDYT?

Copy link
Member

Choose a reason for hiding this comment

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

Do we support deeply nested styles? Same issue is popping for class attribute.

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor

Choose a reason for hiding this comment

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

Same issue is popping for class attribute

wdym? class flattens arrays too but is already typed as any so isn't a problem.

@LinusBorg LinusBorg requested a review from znck February 1, 2021 09:00
@antfu antfu changed the title update jsx.d.ts fix(types): allow style to be an array in JSX Feb 4, 2021
@yyx990803 yyx990803 merged commit 13c9d2c into vuejs:master Mar 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ready to merge The PR is ready to be merged. scope: types
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants