@universal-material/web
Version: 
Material web components
23 lines • 757 B
JavaScript
import { __decorate } from "tslib";
import { customElement, property } from 'lit/decorators.js';
import { UmSetBase } from '../shared/sets/set-base.js';
import { styles } from './button-set.styles.js';
let UmButtonSet = class UmButtonSet extends UmSetBase {
    constructor() {
        super(...arguments);
        /**
         * Whether to render the buttons stacked or not
         */
        this.stack = false;
        this.alignment = 'end';
    }
    static { this.styles = [UmSetBase.styles, styles]; }
};
__decorate([
    property({ type: Boolean, reflect: true })
], UmButtonSet.prototype, "stack", void 0);
UmButtonSet = __decorate([
    customElement('u-button-set')
], UmButtonSet);
export { UmButtonSet };
//# sourceMappingURL=button-set.js.map