pull/224/head
Cory LaViska 2020-09-04 17:11:25 -04:00
rodzic a8f040f3f0
commit 5ae49175af
2 zmienionych plików z 3 dodań i 3 usunięć

4
src/components.d.ts vendored
Wyświetl plik

@ -198,7 +198,7 @@ export namespace Components {
}
interface SlButtonGroup {
/**
* A label to use for the button groups `aria-label` attribute.
* A label to use for the button group's `aria-label` attribute.
*/
"label": string;
}
@ -1601,7 +1601,7 @@ declare namespace LocalJSX {
}
interface SlButtonGroup {
/**
* A label to use for the button groups `aria-label` attribute.
* A label to use for the button group's `aria-label` attribute.
*/
"label"?: string;
}

Wyświetl plik

@ -17,7 +17,7 @@ import { Component, Prop, h } from '@stencil/core';
export class ButtonGroup {
buttonGroup: HTMLElement;
/** A label to use for the button groups `aria-label` attribute. */
/** A label to use for the button group's `aria-label` attribute. */
@Prop() label = '';
connectedCallback() {