mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
don't reflect name
This commit is contained in:
@@ -20,7 +20,7 @@ export class SlAnimation extends LitElement {
|
||||
@queryAsync('slot') defaultSlot: Promise<HTMLSlotElement>;
|
||||
|
||||
/** The name of the built-in animation to use. For custom animations, use the `keyframes` prop. */
|
||||
@property({ reflect: true }) name = 'none';
|
||||
@property() name = 'none';
|
||||
|
||||
/** The number of milliseconds to delay the start of the animation. */
|
||||
@property({ type: Number }) delay = 0;
|
||||
|
||||
@@ -29,7 +29,7 @@ export class SlCheckbox extends LitElement {
|
||||
@internalProperty() private hasFocus = false;
|
||||
|
||||
/** The checkbox's name attribute. */
|
||||
@property({ reflect: true }) name: string;
|
||||
@property() name: string;
|
||||
|
||||
/** The checkbox's value attribute. */
|
||||
@property() value: string;
|
||||
|
||||
@@ -28,7 +28,7 @@ export class SlSwitch extends LitElement {
|
||||
@internalProperty() private hasFocus = false;
|
||||
|
||||
/** The switch's name attribute. */
|
||||
@property({ reflect: true }) name: string;
|
||||
@property() name: string;
|
||||
|
||||
/** The switch's value attribute. */
|
||||
@property() value: string;
|
||||
|
||||
Reference in New Issue
Block a user