-
Notifications
You must be signed in to change notification settings - Fork 79
feat(label): deprecate status prop #3984
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
Changes from 34 commits
9fabc75
a771d5c
37716bd
a2738e4
e59ccc7
fd14009
a9d4750
dae25ab
32bbf5f
b26160c
6908cfe
1842265
4d7540b
364f623
c18cdac
9c64cb1
fe1dc20
0021719
29e4af8
6456cae
c2b3327
34f9f4b
57a556b
479a155
73d50ae
c719371
ac039d8
c43f01b
a4efa6b
1cc7b2d
fbff2f3
f4b80ec
f9626ae
55563bb
cb8e3d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,10 @@ export class CalciteLabel { | |
/** specify the text alignment of the label */ | ||
@Prop({ reflect: true }) alignment: Alignment = "start"; | ||
|
||
/** specify the status of the label and any child input / input messages */ | ||
/** | ||
* specify the status of the label and any child input / input messages | ||
* @deprecated set directly on child element instead | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +@benelan for editorial glance. 👀 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks good, thanks for changing it Yona! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Although the prop description is kinda confusing to me (I'll do an audit at some point before v1) but that was already there lol. The new deprecation notice is 👨🍳 👌 |
||
*/ | ||
@Prop({ reflect: true }) status: Status = "idle"; | ||
|
||
/** The id of the input associated with the label */ | ||
|
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.
Nice!