don't reflect name

This commit is contained in:
Cory LaViska
2021-03-06 15:26:34 -05:00
parent 96091e42ff
commit 786ba8a2fb
3 changed files with 3 additions and 3 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;