diff --git a/src/components/animation/animation.ts b/src/components/animation/animation.ts index 6347c672..6142949c 100644 --- a/src/components/animation/animation.ts +++ b/src/components/animation/animation.ts @@ -20,7 +20,7 @@ export class SlAnimation extends LitElement { @queryAsync('slot') defaultSlot: Promise; /** 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; diff --git a/src/components/checkbox/checkbox.ts b/src/components/checkbox/checkbox.ts index a3f97ae0..aca340b5 100644 --- a/src/components/checkbox/checkbox.ts +++ b/src/components/checkbox/checkbox.ts @@ -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; diff --git a/src/components/switch/switch.ts b/src/components/switch/switch.ts index adf498db..c11affeb 100644 --- a/src/components/switch/switch.ts +++ b/src/components/switch/switch.ts @@ -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;