Skip to content

Commit

Permalink
deprecate(checkbox, radio-button): deprecate 'guid' properties (#10445)
Browse files Browse the repository at this point in the history
**Related Issue:** #9110

## Summary

- deprecate guid properties
  • Loading branch information
driskull authored Sep 30, 2024
1 parent def59bb commit 9729ccf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ export class Checkbox
*/
@Prop({ reflect: true }) form: string;

/** The `id` attribute of the component. When omitted, a globally unique identifier is used. */
/**
* The `id` attribute of the component. When omitted, a globally unique identifier is used.
*
* @deprecated No longer necessary.
*/
@Prop({ reflect: true, mutable: true }) guid: string;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ export class RadioButton
@Prop({ reflect: true })
form: string;

/** The `id` of the component. When omitted, a globally unique identifier is used. */
/**
* The `id` of the component. When omitted, a globally unique identifier is used.
*
* @deprecated No longer necessary.
*/
@Prop({ reflect: true, mutable: true }) guid: string;

/**
Expand Down

0 comments on commit 9729ccf

Please sign in to comment.