don't reflect name

pull/362/head^2
Cory LaViska 2021-03-06 15:26:34 -05:00
rodzic 96091e42ff
commit 786ba8a2fb
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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